runtime.p.runq (field)

32 uses

	runtime (current package)
		proc.go#L5678: 		gp := pp.runq[pp.runqtail%uint32(len(pp.runq))].ptr()
		proc.go#L6608: 	if n > int32(len(pp.runq))/2 {
		proc.go#L6609: 		n = int32(len(pp.runq)) / 2
		proc.go#L6795: 	if t-h < uint32(len(pp.runq)) {
		proc.go#L6796: 		pp.runq[t%uint32(len(pp.runq))].set(gp)
		proc.go#L6810: 	var batch [len(pp.runq)/2 + 1]*g
		proc.go#L6815: 	if n != uint32(len(pp.runq)/2) {
		proc.go#L6819: 		batch[i] = pp.runq[(h+i)%uint32(len(pp.runq))].ptr()
		proc.go#L6856: 	for !q.empty() && t-h < uint32(len(pp.runq)) {
		proc.go#L6858: 		pp.runq[t%uint32(len(pp.runq))].set(gp)
		proc.go#L6866: 			return (pp.runqtail + o) % uint32(len(pp.runq))
		proc.go#L6870: 			pp.runq[off(i)], pp.runq[off(j)] = pp.runq[off(j)], pp.runq[off(i)]
		proc.go#L6902: 		gp := pp.runq[h%uint32(len(pp.runq))].ptr()
		proc.go#L6925: 	if qn > uint32(len(pp.runq)) { // read inconsistent h and t
		proc.go#L6941: 		gp := pp.runq[(h+i)%uint32(len(pp.runq))].ptr()
		proc.go#L6991: 		if n > uint32(len(pp.runq)/2) { // read inconsistent h and t
		proc.go#L6995: 			g := pp.runq[(h+i)%uint32(len(pp.runq))]
		proc.go#L7009: 	n := runqgrab(p2, &pp.runq, t, stealRunNextG)
		proc.go#L7014: 	gp := pp.runq[(t+n)%uint32(len(pp.runq))].ptr()
		proc.go#L7019: 	if t-h+n >= uint32(len(pp.runq)) {
		runtime2.go#L654: 	runq     [256]guintptr